projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bdd477a
)
Fix call with missing parameters.
author
emellor@ewan
<emellor@ewan>
Fri, 23 Sep 2005 14:53:36 +0000
(15:53 +0100)
committer
emellor@ewan
<emellor@ewan>
Fri, 23 Sep 2005 14:53:36 +0000
(15:53 +0100)
tools/python/xen/xend/PrettyPrint.py
patch
|
blob
|
history
diff --git
a/tools/python/xen/xend/PrettyPrint.py
b/tools/python/xen/xend/PrettyPrint.py
index f17074fdfd4e1063b7fa365e6626870cf5a57640..b0c0fe3440faaba555a7672c9adc6aaea5be8d59 100644
(file)
--- a/
tools/python/xen/xend/PrettyPrint.py
+++ b/
tools/python/xen/xend/PrettyPrint.py
@@
-252,7
+252,7
@@
class PrettyPrinter:
self.block = self.block.parent
def prettyprint(self, out=sys.stdout):
- self.top.prettyprint(Line(out, self.width))
+ self.top.prettyprint(Line(out, self.width)
, self.width
)
class SXPPrettyPrinter(PrettyPrinter):
"""An SXP prettyprinter.